# Purpose: Example: importing programmer-defined functions # from its own module file # IMPORTANT: myFunctions.py should be in the same folder as this file import myFunctions print ("1 to 5 cubed") for x in range(1,6): print (myFunctions.cube(x),) print() print() print ("1 to 5 doubled" ) for x in range(1,6): print (myFunctions.doubleIt(x),)